home *** CD-ROM | disk | FTP | other *** search
/ SGI Hot Mix 17 / Hot Mix 17.iso / HM17_SGI / research / lib / insvis.pro < prev    next >
Text File  |  1997-07-08  |  896b  |  33 lines

  1. ; $Id: insvis.pro,v 1.2 1997/01/15 03:11:50 ali Exp $
  2. ;
  3. ; Copyright (c) 1996-1997, Research Systems, Inc.  All rights reserved.
  4. ;       Unauthorized reproduction prohibited.
  5. ;
  6. ;+
  7. ; NAME:
  8. ;       INSVIS
  9. ;
  10. ; PURPOSE:
  11. ;       Stub for INSVIS.  Displays message saying that insight must be running.
  12. ;        Once Insight is restored and running this routine will be replaced by
  13. ;        the actual compiled version in the insight save file.
  14. ;
  15. ; CALLING SEQUENCE:
  16. ;       INSVIS
  17. ;
  18. ; DEVELOPMENT NOTES:
  19. ;        - 
  20. ;
  21. ;------------------------------------------------------------------------------
  22. pro InsVis, $
  23.     name1, $                ;  IN: name of dependent data
  24.     name2, $                ;  IN: (opt) name of independent data
  25.     _EXTRA=extra
  26.  
  27.     ; Notify user that Insight must be running to use this function
  28.     ;
  29.     result = DIALOG_MESSAGE($
  30.         ['Insight must be running in order to use InsVis.', $
  31.           'Please start Insight and try again.'] )
  32. end
  33.